home *** CD-ROM | disk | FTP | other *** search
/ Celestin Apprentice 5 / Apprentice-Release5.iso / Source Code / C / Applications / Python 1.3.3 / Python 133 SRC / Mac / Compat / dirent.h < prev    next >
Text File  |  1994-08-19  |  357b  |  23 lines

  1. /*
  2.  * "Dir.h" for the Macintosh.
  3.  * Public domain by Guido van Rossum, CWI, Amsterdam (July 1987).
  4.  */
  5.  
  6. #define MAXNAMLEN 31
  7. #define MAXPATH 256
  8.  
  9. #define DIR  struct _dir
  10.  
  11. struct _dir {
  12.     long dirid;
  13.     int nextfile;
  14. };
  15.  
  16. struct dirent {
  17.     char d_name[MAXPATH];
  18. };
  19.  
  20. extern DIR *opendir(char *);
  21. extern struct dirent *readdir(DIR *);
  22. extern void closedir(DIR *);
  23.